home *** CD-ROM | disk | FTP | other *** search
- {========================================================================}
- {= (c) 1995-98 SwiftSoft Ronald Dittrich =}
- {========================================================================}
- {= All Rights Reserved =}
- {========================================================================}
- {= D 01099 Dresden = Tel.: +0351-8012255 =}
- {= Loewenstr.7a = info@swiftsoft.de =}
- {========================================================================}
- {= Actual versions on http://www.swiftsoft.de/mmtools.html =}
- {========================================================================}
- {= This code is for reference purposes only and may not be copied or =}
- {= distributed in any format electronic or otherwise except one copy =}
- {= for backup purposes. =}
- {= =}
- {= No Delphi Component Kit or Component individually or in a collection=}
- {= subclassed or otherwise from the code in this unit, or associated =}
- {= .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed =}
- {= without express permission from SwiftSoft. =}
- {= =}
- {= For more licence informations please refer to the associated =}
- {= HelpFile. =}
- {========================================================================}
- {= $Date: 29.01.98 - 22:06:11 $ =}
- {========================================================================}
- unit MMFltReg;
-
- {$I COMPILER.INC}
-
- Interface
-
- Procedure Register;
-
- Implementation
-
- uses
- Controls,
- Classes,
- DsgnIntf,
- SysUtils,
- MMDesign,
- MMSpectr,
- MMPeak,
- MMFIR,
- MMFIRDlg,
- MMEQ,
- MMEQDlg,
- MMFltPrp;
-
- {=========================================================================}
- procedure Register;
- begin
- RegisterComponents('MMDSP',[TMMPeakDetect,
- TMMFIRFilterDialog,
- TMMFIRFilter,
- TMMFIRResponse,
- TMMEqualizerDialog,
- TMMEqualizer]);
-
- { C++Builder 1.0 makes problems here !? }
-
- {$IFNDEF CBUILDER}
- RegisterPropertyEditor(TypeInfo(TMMEQFilterList), TMMEqualizer, 'Filters', TMMEQFilterProperty);
- {$ENDIF}
- RegisterComponentEditor(TMMEqualizer, TMMEQEditor);
-
- {$IFNDEF CBUILDER}
- RegisterPropertyEditor(TypeInfo(TMMFIRFilterList), TMMFIRFilter, 'Filters', TMMFIRFilterProperty);
- {$ENDIF}
- RegisterComponentEditor(TMMFIRFilter, TMMFIREditor);
- end;
-
- {=========================================================================}
- initialization
- RegisterProperty(ptOutput,'DSP',TMMEqualizer,'Spectrum',TMMSpectrum,nil);
-
- RegisterProperty(ptOutput,'DSP',TMMFIRFilter,'Spectrum',TMMSpectrum,nil);
- RegisterProperty(ptOutput,'DSP',TMMFIRFilter,'Response',TMMFIRResponse,nil);
- end.
-